22
Is it possible to let user choose the inserting mode, when he presses Insert key ( method 1 )
Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to "00:00"
	Set ComText to "12:3"
	Set ComAllowToggleInsertMode to True
	Set ComInsertMode to OLEexEditOvertypeMode
End_Procedure
21
Does your control support overtype mode ( method 2 )

Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to "00:00;;;overtype"
	Set ComText to "12:3"
End_Procedure
20
Does your control support overtype mode ( method 1 )

Procedure OnCreate
	Forward Send OnCreate
	Set ComInsertMode to OLEexEditOvertypeMode
	Set ComMask to "00:00"
	Set ComText to "12:3"
End_Procedure
19
How can I change the colors to show a read only field

Procedure OnCreate
	Forward Send OnCreate
	Set ComForeColorReadOnly to (RGB(255,255,255))
	Set ComBackColorReadOnly to (RGB(0,0,0))
	Set ComReadOnly to True
	Set ComText to "text"
End_Procedure
18
How can I lock or make read only the field (method 2)

Procedure OnCreate
	Forward Send OnCreate
	Set ComReadOnly to True
	Set ComText to "text"
End_Procedure
17
How can I lock or make read only the field (method 1)

Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to "*;;;readonly"
	Set ComText to "text"
End_Procedure
16
Is it possible to mask a password field (method 2)
Procedure OnCreate
	Forward Send OnCreate
	Set ComRight to True
	Set ComText to "text"
End_Procedure
15
Is it possible to right align field (method 1)
Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to "*;;;right"
	Set ComText to "text"
End_Procedure
14
Is it possible to mask a password field (method 2)

Procedure OnCreate
	Forward Send OnCreate
	Set ComPassword to True
	Set ComText to "password"
End_Procedure
13
Is it possible to mask a password field (method 1)

Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to "*;;;password"
	Set ComText to "password"
End_Procedure
12
How can I mask an integer within a range

Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to "{1950,2050}"
	Set ComText to 1979
End_Procedure
11
How can I mask an integer value with no grouping support

Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to ";;;float,grouping=,decimal=,digits=0,select=1"
	Set ComText to 12345.67
End_Procedure
10
How can I mask an integer value (method 2)

Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to "-#####;;;float,select=1"
	Set ComText to -12345.67
End_Procedure
9
How can I mask an integer value (method 1)

Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to ";;;float,decimal=,digits=0,select=1"
	Set ComText to 12345.67
End_Procedure
8
How can I specify the number of digits when masking a float (method 2)

Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to "###.#;;;float,select=1"
	Set ComText to 12345.67
End_Procedure
7
How can I specify the number of digits when masking a float (method 1)

Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to ";;;float,select=1,digits=1"
	Set ComText to 12345.67
End_Procedure
6
How do I mask a positive, floating point numbers support, including grouping of digits

Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to ";;;float,select=1,negative=0"
	Set ComText to -12345.67
End_Procedure
5
How do I mask a floating point numbers support, with a different decimal character

Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to ";;;float,grouping= ,decimal=\,,select=1"
	Set ComText to "12345,67"
End_Procedure
4
How do I mask a floating point numbers support, excluding grouping of digits

Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to ";;;float,grouping=,select=1"
	Set ComText to 12345.67
End_Procedure
3
How do I mask a floating point numbers support, including grouping of digits

Procedure OnCreate
	Forward Send OnCreate
	Set ComMask to ";;;float,select=1"
	Set ComText to 12345.67
End_Procedure
2
How can I change the control's foreground color

Procedure OnCreate
	Forward Send OnCreate
	Set ComForeColor to (RGB(255,0,0))
	Set ComText to "aka"
End_Procedure
1
How can I change the control's background color

Procedure OnCreate
	Forward Send OnCreate
	Set ComBackColor to (RGB(255,0,0))
End_Procedure